home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / filesyst / ncpfs / ipxripd-.000 / ipxripd- / ipxripd / ipxripd.h < prev    next >
C/C++ Source or Header  |  1996-02-02  |  1KB  |  52 lines

  1. /*
  2.     IPX routing daemon
  3.  
  4.     Copyright (C) 1996, Volker Lendecke <lendecke@namu01.gwdg.de>
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. */
  21.  
  22. #ifndef _IPXRIPD_H_
  23. #define _IPXRIPD_H_
  24.  
  25. void
  26. fdump_routes(FILE *file);
  27.  
  28. void
  29. handle_rip(struct rip_packet *pkt, int len, struct sockaddr_ipx* sipx,
  30.        struct ipx_interface *src_ifc);
  31.  
  32. void
  33. ipx_rip_do_aging(int rate, int do_broadcast);
  34.  
  35. int
  36. ipx_rip_init_ifc(struct ipx_interface *ifc, IPXNet network,
  37.              char *device, int type, void *data);
  38.  
  39. void
  40. ipx_rip_done(void);
  41.  
  42. void
  43. ipx_rip_initial_broadcasts(void);
  44.  
  45. void
  46. ipx_rip_initial_broadcast(struct ipx_interface *ifc);
  47.  
  48. void
  49. ipx_rip_down_ifc(struct ipx_interface *ifc);
  50.  
  51. #endif /* _IPXRIPD_H_ */
  52.